home *** CD-ROM | disk | FTP | other *** search
- /*
- * dllExample.h
- *
- * Header file for example DLL
- */
-
- #ifndef __dllExample_h
- #define __dllExample_h
-
- /* --- A function to print a friendly greeting --- */
-
- extern void hello(void);
-
- /* --- A function to return the time formatted in a nice way --- */
-
- extern char *current_time(void);
-
- #endif
-